home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19960209-19960425 / 000076_news@columbia.edu _Sat Feb 24 10:15:35 1996.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: news@columbia.edu
  2. Received: from apakabar.cc.columbia.edu (apakabar.cc.columbia.edu [128.59.35.159]) by watsun.cc.columbia.edu (8.7.3/8.7.3) with ESMTP id KAA25753 for <kermit.misc@watsun>; Sat, 24 Feb 1996 10:15:35 -0500 (EST)
  3. Received: (from news@localhost) by apakabar.cc.columbia.edu (8.7.3/8.7.3) id KAA16937 for kermit.misc@watsun; Sat, 24 Feb 1996 10:15:33 -0500 (EST)
  4. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  5. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: Re: C-Kermit, UNIX and term variables
  8. Date: 24 Feb 1996 15:15:14 GMT
  9. Organization: Columbia University
  10. Lines: 30
  11. Message-ID: <4gna22$ggh@apakabar.cc.columbia.edu>
  12. References: <4gla4o$rp6@csugrad.cs.vt.edu> <ZEPEDA.96Feb23153749@am51.wg.waii.com> <4glibl$5ss@csugrad.cs.vt.edu>
  13. NNTP-Posting-Host: watsun.cc.columbia.edu
  14.  
  15. In article <4glibl$5ss@csugrad.cs.vt.edu>,
  16. Pete-O-Rama <haggerty@csugrad.cs.vt.edu> wrote:
  17. : Daniel Zepeda (zepeda@am51.wg.waii.com) wrote:
  18. : : In article <4gla4o$rp6@csugrad.cs.vt.edu>
  19. : : haggerty@csugrad.cs.vt.edu (Pete-O-Rama) writes:
  20. : : This may not be your problem, but remember that most crons run their
  21. : : jobs with the system default shell, which is usually the Bourne
  22. : : Shell. Make sure that your csh script is being interpreted by a csh
  23. : : interpreter, like:
  24. : :  "28 16 13 01 *  /bin/csh yourScriptName".
  25. : Thanks for the response but since I have run the script (both command line
  26. : and exec, I just tested it again) as root that should not make any difference
  27. : at all.  I have also tried testing it both with and without the /bin/csh.
  28. : Argh, I wish I knew what Kermit looks for.  
  29. What do you want it to look for?  As explained in the manual, Kermit
  30. commands can access environment variables as follows:
  31.  
  32.   \$(name)
  33.  
  34. where "name" is the name of the environment variable.  Case matters.
  35.  
  36. In any case, you might find you have an easier time writing your program
  37. entirely as a Kermit script, rather than trying to mix expect and Kermit.
  38. That's what the Kermit script language is for.
  39.  
  40. - Frank